home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / bifit100.zip / BIFIT.DOC < prev    next >
Text File  |  1992-03-05  |  1KB  |  35 lines

  1. Gentle User,
  2.  
  3. BIFIT  is  a program that will read a set of data,  determine a  least-squares
  4. binomial  expansion curve-fit,  create both FORTRAN and C source codes for the
  5. curve-fit,   as well as the necessary plot files to display the agreement with
  6. the data.
  7.  
  8. A binomial expansion in one independent variable is just a polynomial
  9.  
  10.      Y=C1+C2*X+C3*X²+...
  11.  
  12. A binomial expansion in two independent variables looks like
  13.  
  14.      Y=C1+C2*X1+C3*X2+C4*X1²+C5*X1*X2+C6*X2²+...
  15.  
  16. BIFIT  will handle 1 dependent variable and from 1 to 4 independent variables.
  17. The  data  must  be in a file which has the dependent variable  in  the  first
  18. column followed by the independent variables.
  19.  
  20. To run the program enter
  21.  
  22.      BIFIT d:\path\datafile.ext Nc No
  23.  
  24. where  Nc is the number columns of data (Nc must be 2-5),  No is the order  of
  25. the expansion (No must be at least 1).
  26.  
  27. A  line  beginning with * in the data file will be ignored.  A line  beginning
  28. with $ will terminate reading.
  29.  
  30.                                                            Dudley J. Benton
  31.                                                            TVA Engineering Lab
  32.                                                            P.O. Drawer E
  33.                                                            Norris, TN 37828
  34.                                                            615/632-1887
  35.